home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / H_FOLDER / ODEFS.H < prev    next >
Text File  |  1990-03-02  |  883b  |  48 lines

  1. /*
  2.  * Operator definitions.
  3.  */
  4.  
  5. OpDef(asgn,2,":=")
  6. OpDef(bang,1,"!")
  7. OpDef(cater,2,"||")
  8. OpDef(compl,1,"~")
  9. OpDef(diff,2,"--")
  10. OpDef(divide,2,"/")
  11. OpDef(eqv,2,"===")
  12. OpDef(inter,2,"**")
  13. OpDef(lconcat,2,"|||")
  14. OpDef(lexeq,2,"==")
  15. OpDef(lexge,2,">>=")
  16. OpDef(lexgt,2,">>")
  17. OpDef(lexle,2,"<<=")
  18. OpDef(lexlt,2,"<<")
  19. OpDef(lexne,2,"~==")
  20. OpDef(minus,2,"-")
  21. OpDef(mod,2,"%")
  22. OpDef(mult,2,"*")
  23. OpDef(neg,1,"-")
  24. OpDef(neqv,2,"~===")
  25. OpDef(nonnull,1,BackSlash)
  26. OpDef(null,1,"/")
  27. OpDef(number,1,"+")
  28. OpDef(numeq,2,"=")
  29. OpDef(numge,2,">=")
  30. OpDef(numgt,2,">")
  31. OpDef(numle,2,"<=")
  32. OpDef(numlt,2,"<")
  33. OpDef(numne,2,"~=")
  34. OpDef(plus,2,"+")
  35. OpDef(powr,2,"^")
  36. OpDef(random,1,"?")
  37. OpDef(rasgn,2,"<-")
  38. OpDef(refresh,1,"^")
  39. OpDef(rswap,2,"<->")
  40. OpDef(sect,3,"[:]")
  41. OpDef(size,1,"*")
  42. OpDef(subsc,2,"[]")
  43. OpDef(swap,2,":=:")
  44. OpDef(tabmat,1,"=")
  45. OpDef(toby,3,"...")
  46. OpDef(unions,2,"++")
  47. OpDef(value,1,".")
  48.